function fib(n) { if(n<=2){ return n; }else { return fib(n-1) +fib(n-2) } }
← 4.1.1 判断一个字符串是否是回文 4.1.3 判断素数 →